home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / art&graf.ix / art-0039 / source / dcprint.def < prev    next >
Text File  |  1997-04-16  |  1KB  |  33 lines

  1. DEFINITION MODULE DCPrint; (* Print Picture *)
  2.  
  3.  
  4. (*--------------------------------------------------------------------*)
  5. (* This library module will do the printing of a hi-res picture.      *)
  6. (*                                                                    *)
  7. (*--------------------------------------------------------------------*)
  8.  
  9.  
  10. (*--------------------------------------------------------------------*)
  11. (*   This is version 2.00         August 1988     L.G.Miller          *)
  12. (*                                : changed to use scaling print      *)
  13. (*                                  routines                          *)
  14. (*                                                                    *)
  15. (*                   1.10         August 1987     L.G.M               *)
  16. (*                   1.00         April 1987      L.G.M               *)
  17. (*--------------------------------------------------------------------*)
  18.  
  19. FROM DCGlobal        IMPORT PrinterTypes,
  20.                             PictureImage,
  21.                             PrintImage,
  22.                             HiResScreen;
  23.  
  24.  
  25. PROCEDURE SetPrinterToUse( printer : PrinterTypes );
  26.  
  27. PROCEDURE PrintHiResPicture( VAR PictureDetails : PictureImage;
  28.                              VAR PrintDetails   : PrintImage;
  29.                              VAR picture        : HiResScreen ) ;
  30.  
  31.  
  32. END DCPrint.
  33.